home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / lstat.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  209b  |  13 lines

  1. #include <stat.h>
  2. #include "lib.h"
  3.  
  4. __EXTERN int _do_stat __PROTO((const char *_path, struct stat *st, int lflag));
  5.  
  6. int
  7. lstat(path, st)
  8.     const char *path;
  9.     struct stat *st;
  10. {
  11.     return _do_stat(path, st, 1);
  12. }
  13.